home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / eiffel / vici / examples / sqrttest.e < prev    next >
Encoding:
Text File  |  1994-09-22  |  203 b   |  15 lines

  1. class SqrtTest
  2. feature
  3.     sobj: sqrt;
  4.     
  5.     create is
  6.     do
  7.         sobj.create;
  8.         
  9.         io.putint(sobj.sqrt(1));
  10.         io.putint(sobj.sqrt(2));
  11.         io.putint(sobj.sqrt(4));
  12.         io.putint(sobj.sqrt(8));
  13.     end;
  14. end
  15.